home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple WWDC 1996
/
WWDC96_1996 (CD).toast
/
Technology Materials
/
MacOS 8 Resources
/
Developer Tools
/
Mac OS 8 Interfaces & Libraries
/
Interfaces
/
IDLIncludes
/
TSMTokenize.idl
< prev
next >
Wrap
Text File
|
1996-05-01
|
1KB
|
66 lines
/*
File: TSMTokenize.idl
Contains: Declarations for the SOM based Text Services Manager service Objects.
Version: Technology: 4/20/95 2/21/95
Release: Universal Interfaces 3.0d3 on Copland DR1
Copyright: © 1995-1996 by Apple Computer, Inc. All rights reserved.
Bugs?: If you find a problem with this file, send the file and version
information (from above) and the problem description to:
Internet: apple.bugs@applelink.apple.com
AppleLink: APPLE.BUGS
*/
#include <somobj.idl>
#include <somcls.idl>
#include <TextObjects.idl>
#include <TSMObject.idl>
interface TSMTokenize : TSMObject
{
attribute TextObject fTextRun;
attribute TextObjectIndex fRunStartIndex;
attribute TextObjectIndex fRunEndIndex;
attribute TextObjectIndex fTokenStartIndex;
attribute TextObjectIndex fTokenEndIndex;
attribute UInt32 fControlFlags;
OSStatus GetNextToken( in TextObject token);
#ifdef __SOMIDL__
implementation
{
releaseorder: GetNextToken,
_get_fTextRun,
_set_fTextRun,
_get_fRunStartIndex,
_set_fRunStartIndex,
_get_fRunEndIndex,
_set_fRunEndIndex,
_get_fTokenStartIndex,
_set_fTokenStartIndex,
_get_fTokenEndIndex,
_set_fTokenEndIndex,
_get_fControlFlags,
_set_fControlFlags;
InitializeService : override;
TerminateService : override;
ServiceChanged : override;
somInit : override;
majorversion = 1;
minorversion = 1;
};
#endif
};